home *** CD-ROM | disk | FTP | other *** search
- Wmaster #156 @5858
- 7Tuesday5, 3July 167, 31991 5 8:13 7pm 1<7EST1>
- 7[2Msg_Status7]: 2Reply Not Needed
- 7──────────────────────────────────────────────────────────────────────────
-
- ------- --------- -------------- -------------- ---
- -------- -------- --- Mod #16 from the Winds Master ----- ----
- ----- ----- ---------- The Whirlwind of Information ----- ---
- ----- ------- ------- 8 pm Friday to 6 am Monday, ----- ----
- ------- ------------ (Weekends ONLY!) 765-3093. ------ -----
- ---- ------- ------ ---------
- -------- ------------- I can be reached at 93 @5851 --------- ---
- ----- -------- ---- ------- --------- --------- ------
-
- WMREPLY.MOD
-
- Ok, there are a lot of reply mods out there, and this is actually just
- a changed version of one of them (sorry, I don't know which one). The only
- code left is the addline's.
-
- The difference between this mod and all the others is simple, it gives
- the users the option to not add anything. It doesn't give the Part option
- that I have seen, 'cause I really didn't like it.. but you can add it if
- you want. The option that it does give you is D:on't say. This doesn't
- add anything to the message. I like this for my mods and ansi pictures.
-
- ON WITH THE MOD!
-
- key-
-
- = existing code
- + added line
- ! changed line
- ? other mod.. optional
-
-
- make the following change to the var declarations in inmsg:
-
-
- = void inmsg(messagerec *m1, char *title /* was more here.. don't change */
- = {
- = char s[LEN],s1[LEN],s2[LEN],ro[81],fnx[81],chx,*ss,*ss1;
- + char c; /* REPLY */
- = int maxli,curli,done,save,savel,i,i1 /* was more here.. don't change */
- = int email; /* email? 1 if yes, 0 if no */
-
-
- make these changes to the same function. (the ? lines can be added, but
- are optional).
-
- = if (irt[0]) {
- ? strcpy(s,"\x03""7RE: \x03""1"); /* colors RE: same as MS: */
- = strcat(s,irt);
- = addline(b,s,&l1);
- = addline(b,"",&l1);
- = irt[0]=0;
- = }
- =
- + prt(2, "Replies: Y:es, N:o, D:on't say : "); /* REPLY */
- + c=onek("YND"); /* REPLY */
- + switch (c) /* REPLY */
- + { /* REPLY */
- + case 'Y': /* REPLY */
- + addline(b,"\x03""7MS:\x03""1 Reply Wanted",&l1); /* REPLY */
- + break; /* REPLY */
- + case 'N': /* REPLY */
- + addline(b,"\x03""7MS:\x03""1 Reply not needed",&l1); /* REPLY */
- + case 'D': /* REPLY */
- + break; /* REPLY */
- + } /* REPLY */
- + /* REPLY */
- + if (c!='D') addline(b,"",&l1); /* REPLY */
- =
- ? pl("Saving..."); /* I moved Saving... so it looks better */
- =
- = if (fsed) {
- = ll=filelength(i5);
-
-
-
- I think that's it..
-
- Winds Master
-
-
-